home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Source Code
/
C
/
Applications
/
Python 1.4
/
Python 1.4 source
/
Mac
/
Lib
/
test
/
fgbgtimetest.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
1996-09-23
|
277 b
|
18 lines
|
[
TEXT/Pyth
]
"""fgbgtest - See how many CPU cycles we get"""
import time
loopct = 0L
oldloopct = 0L
oldt = time.time()
while 1:
t = time.time()
if t - oldt >= 1:
if oldloopct:
print loopct-oldloopct,'in one second'
oldloopct = loopct
oldt = time.time()
loopct = loopct + 1